Skip to main content

Types of Authentication

Backflipt platform offers a range of authentication types to accommodate diverse integration requirements. Based on the application that is integrated, the appropriate authentication method is implemented into your flow, enabling seamless connectivity and data exchange while maintaining the desired level of security. Multiple credentials are allowed for the same instance; however, the permissions change for each instance based on the scope.

The authentication types supported by the platform include basic authentication, OAuth 2.0, API key authentication, and custom authentication methods. Each authentication type offers distinct features and benefits, catering to different integration scenarios and security requirements.

O-Auth v2

O-Auth v2 is an open standard for authorization that allows you to grant third-party applications access to their accounts without sharing passwords. For integrations that support the O-Auth v2 authentication type, you must authenticate on behalf of the client application and grant the requested permissions.

Basic

Basic authentication is a simple type of authentication that involves users providing their username and password, which are then sent to a server for verification. This basic authentication is a simple and is used by applications that do not handle sensitive data.

API

API Key authentication is a popular type of authentication because it is relatively easy to implement and manage by applications. Access using API key allows the user or application to authenticate credentials using API. API then validates the API key and grants access to the user or application if the key is valid.

DB (Database) Connection

Database connection authentication is the process of verifying the identity and credentials of users attempting to access a database application. This ensures that only authorized users can connect to the database application and perform operations. The DB connection authentication type is used mainly for authenticating database applications.

Top of page